GetBackgroundColorsResponse

data class GetBackgroundColorsResponse(backgroundColors: List<String>?, computedFontSize: String?, computedFontWeight: String?)

Represents response frame that is returned from CSS#getBackgroundColors operation call.

See also

Constructors

GetBackgroundColorsResponse
Link copied to clipboard
fun GetBackgroundColorsResponse(backgroundColors: List<String>? = null, computedFontSize: String? = null, computedFontWeight: String? = null)

Properties

backgroundColors
Link copied to clipboard
val backgroundColors: List<String>? = null
The range of background colors behind this element, if it contains any visible text.
computedFontSize
Link copied to clipboard
val computedFontSize: String? = null
The computed font size for this node, as a CSS computed value string (e.g.
computedFontWeight
Link copied to clipboard
val computedFontWeight: String? = null
The computed font weight for this node, as a CSS computed value string (e.g.

Sources

jvm source
Link copied to clipboard